New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@tybys/native-require

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tybys/native-require

Export native require function. It can be ignored by webpack preprocessing and avoid bundling webpack node polyfills.

  • 1.3.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

native-require

Export native require function. It can be ignored by webpack preprocessing and avoid bundling webpack Node.js polyfills.

$ npm install @tybys/native-require

When should you use this package

If you want to write a library which supports both Node.js and browser, and you hope it can be work well with webpack, you can use this package instead of writing __non_webpack_require__ directly in your code.

Usage:

Webpack

Plugin is not neccesary.

const { NativeRequireWebpackPlugin } = require('@tybys/native-require/plugins/webpack.js')

module.exports = {
  /* ... */
  plugins: [
    new NativeRequireWebpackPlugin({
      variable: '__tybys_native_require__' // this is default value
    })
  ]
}

CommonJS:

const { nativeRequire } = require('@tybys/native-require/index.js') // index.js can not be omitted
if (typeof nativeRequire === 'function') {
  // ...
}

ESM format input / TypeScript:

import { nativeRequire } from '@tybys/native-require'
if (typeof nativeRequire === 'function') {
  // ...
}

or use injected variable specified in plugin option.

const { nativeRequire } = __tybys_native_require__
if (typeof nativeRequire === 'function') {
  // ...
}

Rollup

NOTE: If you are using commonjs require('@tybys/native-require/index.js') with @rollup/plugin-commonjs, you need to add @tybys/native-require/plugins/rollup.js.

const { nativeRequireRollupPlugin } = require('@tybys/native-require/plugins/rollup.js')

module.exports = {
  plugins: [
    nativeRequireRollupPlugin(),
    /* commonjs node-resolve ... */
  ]
}
const { nativeRequire } = require('@tybys/native-require/index.js') // index.js can not be omitted

ESM / TypeScript:

import { nativeRequire } from '@tybys/native-require'
if (typeof nativeRequire === 'function') {
  // ...
}

Browser (Generally do not use) / Electron renderer process

<script src="node_modules/@tybys/native-require/dist/native-require.js"></script>
<script>
  (function () {
    var nativeRequire = nr.nativeRequire;
    if (typeof nativeRequire === 'function') {
      // ...
    }
  })();
</script>

Examples are in test folder.

FAQs

Package last updated on 30 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc